Uses of Class
edu.claflin.finder.algo.ArgumentsBundle
Packages that use ArgumentsBundle
Package
Description
Contains the Algorithm code for finding bipartite subgraphs.
-
Uses of ArgumentsBundle in edu.claflin.finder.algo
Fields in edu.claflin.finder.algo declared as ArgumentsBundleModifier and TypeFieldDescriptionfinal ArgumentsBundleAlgorithm.argsThe ArgumentsBundle object holding arguments for the algorithm.Constructors in edu.claflin.finder.algo with parameters of type ArgumentsBundleModifierConstructorDescriptionAlgorithm(ArgumentsBundle args) Public Constructor for creating an Algorithm.Public constructor for initializing the BreadthFirstTraversalSearch with default conditions.BronKerbosch(ArgumentsBundle bundle) Public constructor for initializing the Bron Kersbboch with default conditions.Public constructor for initializing the DepthFirstTraversalSearch with default conditions.Public constructor for initializing the DepthFirstTraversalSearch with default conditions. -
Uses of ArgumentsBundle in edu.claflin.finder.algo.clustering
Constructors in edu.claflin.finder.algo.clustering with parameters of type ArgumentsBundleModifierConstructorDescriptionFastGreedy(ArgumentsBundle args) GirvanNewman(ArgumentsBundle args) Infomap(ArgumentsBundle args) Label Propagation Algorithm (LPA) for Community Detection.Louvain(ArgumentsBundle args) Walktrap(ArgumentsBundle args) -
Uses of ArgumentsBundle in edu.claflin.finder.algo.shortestpath
Constructors in edu.claflin.finder.algo.shortestpath with parameters of type ArgumentsBundleModifierConstructorDescriptionDijkstraShortestPath(ArgumentsBundle bundle) Public Constructor for creating an Algorithm.ShortestPath(ArgumentsBundle bundle) Public Constructor for creating Shortest Path Algorithm. -
Uses of ArgumentsBundle in edu.claflin.finder.algo.spanningtree
Constructors in edu.claflin.finder.algo.spanningtree with parameters of type ArgumentsBundleModifierConstructorDescriptionExtremumSpanningTree(ArgumentsBundle bundle) Public constructor for initializing the Extremum Spanning Tree finder with default conditions.Kruskal(ArgumentsBundle bundle) Public constructor for initializing the Kruskal with default conditions.Prim(ArgumentsBundle bundle) Public constructor for initializing the Prim with default conditions.